home *** CD-ROM | disk | FTP | other *** search
/ Shareware Grab Bag / Shareware Grab Bag.iso / 011 / l31.arc / L.DOC next >
Encoding:
Text File  |  1986-12-27  |  5.5 KB  |  165 lines

  1.                      L.EXE - A versatile directory lister
  2.                                   Version 3.1
  3.                             (C) 1986 Ravi Bhavnani
  4.  
  5.  
  6. L is a substitute for the DOS DIR command.   At the expense of slightly slower 
  7. operation, L provides a number of useful options.
  8.  
  9. For  example,   you  can get a list of sub-directories only  or  exclude  them 
  10. completely.  L even allows you to get a list of files created within a certain 
  11. time span.   Long displays automatically pause between each screenful (you can 
  12. disable this pause when redirecting L's output to a file).    Displays  may be 
  13. sorted  and  can  be brief or verbose.   L's error messages are a  shade  more 
  14. informative than those provided by the DIR command. 
  15.  
  16.  
  17. Usage:     L  [filespec]  [option [option...]]
  18.  
  19. Option:    /a:mm-dd-yy = list files After date
  20.            /b:mm-dd-yy = list files Before date
  21.  
  22.            /d          = list subDirectories only
  23.            /f          = list Files only
  24.  
  25.            /p          = do *not* Pause after each screenful
  26.            /s          = Sort display on filename and extension
  27.  
  28.            /h          = suppress Header
  29.            /i          = suppress file size, date, sub-dir Information
  30.            /t          = suppress Trailer
  31.            /q          = Quick display (equivalent to /i/h/t)
  32.  
  33.            /w          = suppress "Working..." message
  34.            /?          = display these instructions
  35.  
  36. Options may be entered in any  order (following the optional filespec) and are 
  37. processed left to right.  Certain options take precedence over others and some 
  38. are mutually exclusive.  To wit:
  39.  
  40. The /a and /b options affect only non-subdirectory files.   Because L displays 
  41. subdirectory entries without the size and date information, these options have 
  42. no  effect on  them.   Default dates for these  options  are  /a:12-31-79  and 
  43. /b:12-31-99.    The /a and /b options may be entered together  or  separately.  
  44. For example,  L  /B:1-1-85  displays a list of files that were created between 
  45. Jan 1, 1980 and Dec 31, 1984 (both dates inclusive). 
  46.  
  47. /d and /f are mutually exclusive.  /d lists only subdirectory entries while /f 
  48. lists only file entries.   L  always displays subdirectory names in upper case 
  49. and file names in lower case.   If the /d option is given along with the /a or 
  50. /b options,  the latter are ignored.
  51.  
  52. L's default listing format comprises of a header line,  a  list of files along 
  53. with  size and date information (for non-subdirectory entries)  and a  trailer 
  54. line.  /h, /i, and /t suppress each of these entities, allowing you to control 
  55. the amount of detail in the directory listing.   /q reduces the display to its 
  56. least  verbose  form and is equivalent to  the  combination  /h  /i  /t.
  57.  
  58. If your directory contains a large number of files, L displays "Working..." as 
  59. it  gathers  the directory information.   You can disable  this  message  when 
  60. redirecting L's output to a file,  by the /w option.  The  following  examples 
  61. should make things clear. 
  62.  
  63.  
  64. C> L
  65.  
  66. directory of c:\*.*
  67.  
  68. ADV                   <subdirectory>
  69. BIN                   <subdirectory>
  70. COMM                  <subdirectory>
  71. DOC                   <subdirectory>
  72. DOS                   <subdirectory>
  73. DOWNLOAD              <subdirectory>
  74. ETC                   <subdirectory>
  75. GAMES                 <subdirectory>
  76. HELP                  <subdirectory>
  77. INCLUDE               <subdirectory>
  78. LIB                   <subdirectory>
  79. NYIT                  <subdirectory>
  80. TEMP                  <subdirectory>
  81. autoexec bat      487 12-22-86  3:21
  82. command  com    23791 12-30-85 12:00
  83. ansi     sys     1651 12-30-85 12:00
  84. config   sys       90 12-24-86  2:18
  85.  
  86. 17 files, 26019/21489664 used/free
  87.  
  88. C> L /F
  89.  
  90. directory of c:\*.*
  91.  
  92. autoexec bat      487 12-22-86  3:21
  93. command  com    23791 12-30-85 12:00
  94. ansi     sys     1651 12-30-85 12:00
  95. config   sys       90 12-24-86  2:18
  96.  
  97. 4 files, 26019/21489664 used/free
  98.  
  99. C> L /F /S
  100.  
  101. directory of c:\*.*
  102.  
  103. ansi     sys     1651 12-30-85 12:00
  104. autoexec bat      487 12-22-86  3:21
  105. command  com    23791 12-30-85 12:00
  106. config   sys       90 12-24-86  2:18
  107.  
  108. 4 files, 26019/21489664 used/free
  109.  
  110. C> L /F /S /I
  111.  
  112. directory of c:\*.*
  113.  
  114. ansi     sys
  115. autoexec bat
  116. command  com
  117. config   sys
  118.  
  119. 4 files, 26019/21489664 used/free
  120.  
  121. C> L /F /S /Q
  122.  
  123. ansi     sys
  124. autoexec bat
  125. command  com
  126. config   sys
  127.  
  128. C> L /F /B:1-1-86
  129.  
  130. directory of c:\*.*
  131.  
  132. command  com    23791 12-30-85 12:00
  133. ansi     sys     1651 12-30-85 12:00
  134.  
  135. 2 files, 25442/21489664 used/free
  136.  
  137. C> L /F /A:12-1-86 /B:12-25-86 /Q
  138.  
  139. autoexec bat
  140. config   sys
  141.  
  142. C> L /B:12-25-82
  143. no item satisfied search criteria
  144.  
  145. C>
  146.  
  147.  
  148. Some last few words: 
  149.  
  150. L   is  available for free for the asking.    You are encouraged to copy   and 
  151. give  unmodified versions of this disk to your friends.   However,  note  that 
  152. this  software enjoys all the privileges and support of the law offered  by  a 
  153. registered copyright.  You are not allowed to sell or distribute this software 
  154. in any form, original or modified, for profit. 
  155.  
  156. If you find L useful, a  contribution towards its creation and the creation of 
  157. other such shareware will be appreciated.   If your generosity permits,   send 
  158. ten dollars by check or money order to: 
  159.  
  160.                                Ravi Bhavnani
  161.                                Foo ยต-Systems
  162.                           226 Christie Street #2
  163.                               Ridgefield Park
  164.                                NJ 07660-2019
  165.